*{
    box-sizing: border-box;
    font-family: "El Messiri", serif;
    margin: 0px;
}
#top{
    display: flex;
    justify-content: flex-end;
}
.icon{
    display: flex;
    justify-content: space-between;
    margin-right: 10px;
}
.logo{
    position: absolute;
    left: 10%;
    width: 100px;
}
.logo img{
    width: 70px;
    height: 60px;
}
.logo img:hover{
    scale: 1.2;
}
.icon a{
    display: inline-block;
    width: 38px;
    height: 38px;
    background-color: #ef0e0e;
    border-radius: 12px;
    margin: 10px;
    box-shadow: 1px 1px 4px #aeaeae, -1px -1px 4px white;
    text-align: center;
    line-height: 42px;
    font-size: 23px;
    border: 2px solid #eee;
    color: #FFBABA;
    transition: all 0.3s ease;
}
.ph-num{
    font-size: 18px;
    color: #333;
    text-align: right;
    font-weight: bold;
    font-family: "El Messiri", serif;
    margin-right: 70px;
    margin-top: 25px;
}
.nav-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #d90429;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
}
.nav-menu{
    display: flex;
    justify-content: center;
    width: 100%;
}
ul{
    list-style-type: none;
    margin: 0px;
    padding: 0px;

}
li{
    float: left;
    margin: 0px 20px;
}
li a{
    text-decoration: none;
    color: white;
    font-size: 22px;
    font-weight: bold;
    position: relative;

}
li .dropdown{
    display: inline-block;
}
.dropdown-content{
    position: absolute;
    background-color: #d90429 ;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    display: none;
}
.dropdown-content a{
    display: block;
    position: relative;
    padding: 10px;
    font-size: 16px;
}
.dropdown:hover .dropdown-content{
    display: block;
}
ul a:hover{
    border-bottom: 2px solid white;
    transition: 0.5s all;
}
.two img{
    width: 100%;
    height: 300px;
}
.para{
    margin: 0px 76.203px;
    padding: 10px 0px;
}
.para h1{
    text-align: center;
    font-size: 35px;
    padding: 10px;
    font-weight: bold;
}
.para p{
    text-align: center;
    margin-left: 24px;
    font-size: 20px;
}
.four{
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.form-container{
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1350px;
    font-family: "El Messiri", serif;
}
.form-row{
    display: flex;
    gap: 20px;
}
.form-coll img{
    height: 440px;
    width: 440px;
}
.form-col{
    width: 90%;
}
.form-field{
    width: 100%;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 18px;
    box-shadow: none;
    transition: all 0.3s ease-in-out;
    font-family: "El Messiri", serif;
}
.form-field:hover{
    border: 1px solid red;
    box-shadow: 0 4px 4px red;
}
.form-button{
    width: 100%;
    padding: 10px;
    background-color: red;
    color: black;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 20px;
    font-family: "El Messiri", serif;
}
.form-button:hover{
    color: #ffffff;
}
footer{
    padding-top: 15px;
    background-color: red;
    color: white;
    text-align: center;
}
footer img{
    width: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: trasform 0.3s ease;
}
footer img:hover{
    scale: 1.1;
    transform: 0.3s ease;
}
.social-menu ul{
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.social-menu ul li{
    margin: 0px 10px;
}
.social-menu ul li a{
    position: relative;
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 80%;
    background-color: white;
    text-align: center;
    transition: 0.5s;
    transform: translate(0, 0px);
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
}
.social-menu ul li a .fa{
    color: #000000;
    font-size: 20px;
    line-height: 36px;
    transition: .5s;
}
.social-menu ul li:hover{
    transform: translate(0,-10px);
    transition: 1s;
}
.cont p{
    margin-bottom: 30px;
}
.icon a:hover{
    background-color: black;
    color: white;
}
@media screen and (max-width:600px) {
    .para{
        margin: 0px;
    }
    .para h1{
        font-size: 23px;
    }
    .para p{
        font-size: 17px;
        margin: 0px;
    }
    .form-row{
        flex-direction: column;
    }
    .form-col{
        width: 100%;
    }
    .ph-num{
        margin: 0px;
        font-size: 10px;
    }
    .top{
        justify-content: left;
    }
    .form-coll img{
        width: 100%;
    }
    .nav-menu{
        flex-direction: column;
    }
    .nav-menu ul li{
        display: block;
        text-align: center;
        width: 100%;
        margin: 0px;
    }
    .dropdown-content{
        text-align: center;
        position: relative;
    }
    .ph-num{
        font-size: 12px;
        margin: 0px;
        margin-top: 12px;
    }
    #top{
        justify-content: left;
    }
}

#scroll {
    bottom: 20px;
    right: 20px;
    background: red;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: fixed;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}